/*-------------------------------------*/
/*       VARIABLES
/*-------------------------------------*/
/*-------------------------------------*/
/*       COMMONS
/*-------------------------------------*/
*:focus, *:active, *:hover {
  outline: none !important;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background-color: #ffffff;
}

.toggle-label {
  font-size: 28px;
}

.opt-item {
  margin-bottom: 20px;
}

.knobs, .layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button {
  position: relative;
  top: 50%;
  width: 100%;
  height: 50px;
  margin: 0;
  overflow: hidden;
  max-width: 200px;
  display: inline-block;
}

.button.r, .button.r .layer {
  border-radius: 100px;
}

.button.b2 {
  border-radius: 2px;
}

.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs {
  z-index: 2;
}

.layer {
  width: 100%;
  background-color: #ebf7fc;
  transition: 0.3s ease all;
  z-index: 1;
}

.button-cover * {
  box-sizing: content-box !important;
}

#mc-toggle .knobs:before, #mc-toggle .knobs:after, #mc-toggle .knobs span {
  position: absolute;
  top: 0;
  width: 50%;
  height: 10px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 20px 0;
  border-radius: 2px;
  transition: 0.3s ease all;
}

#mc-toggle .knobs:before, #mc-toggle .knobs:after {
  color: #4e4e4e;
  z-index: 1;
  font-size: 14px;
  padding: 16px 0;
}

#mc-toggle .knobs:before {
  content: 'OPT-IN';
  left: 0;
}

#mc-toggle .knobs:after {
  content: 'OPT-OUT';
  right: 0;
}

#mc-toggle .knobs span {
  width: 50%;
  height: 100%;
  left: 50%;
  background-color: #03A9F4;
  z-index: 2;
}

#mc-toggle .checkbox:checked + .knobs span {
  left: 0;
  background-color: #F44336;
}

#mc-toggle .checkbox:checked ~ .layer {
  background-color: #fcebeb;
}

ul.ks-cboxtags {
  list-style: none;
  padding: 20px 20px 10px 0px;
}

ul.ks-cboxtags li {
  display: inline;
}

ul.ks-cboxtags li label {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(139, 139, 139, 0.3);
  color: #adadad;
  border-radius: 25px;
  white-space: nowrap;
  margin: 3px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all .2s;
}

ul.ks-cboxtags li label {
  padding: 8px 12px;
  cursor: pointer;
}

ul.ks-cboxtags li label::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  width: 20px;
  padding: 2px 6px 2px 2px;
  content: "\f067";
  transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label::before {
  content: "\f00c";
  transform: rotate(-360deg);
  transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label {
  border: 2px solid #03A9F4;
  background-color: #03A9F4;
  color: #fff;
  transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
  display: absolute;
}

ul.ks-cboxtags li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.btn-primary {
  background-color: #03A9F4;
  border-color: #03A9F4;
  font-size: 28px;
  margin-top: 30px;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #03A9F4 !important;
  border-color: #03A9F4 !important;
}
